Skip to content

Conversation

@ojowwalker77
Copy link
Owner

No description provided.

@ojowwalker77 ojowwalker77 added the skip-changelog Skip changelog enforcement label Jan 13, 2026
@ojowwalker77 ojowwalker77 merged commit cd253e8 into main Jan 13, 2026
7 checks passed
@ojowwalker77 ojowwalker77 deleted the feat/migrate-commands-to-skills branch January 13, 2026 21:48
@greptile-apps
Copy link
Contributor

greptile-apps bot commented Jan 13, 2026

Greptile Summary

Updated the release workflow to copy the skills directory instead of the deprecated commands directory during plugin packaging.

  • Changed line 189 from cp -r commands dist/matrix/ to cp -r skills dist/matrix/ to align with the repository's migration from commands to skills architecture
  • This fix ensures release packages include the correct directory structure after the commands-to-skills migration completed in PR feat: migrate commands to skills with hot-reload support #72

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • Single-line change that correctly updates a file path reference to match the actual directory structure. The skills directory exists and the commands directory was removed in PR feat: migrate commands to skills with hot-reload support #72, making this fix necessary and correct.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/release-plugin.yml Updated workflow to copy skills directory instead of deprecated commands directory

Sequence Diagram

sequenceDiagram
    participant GH as GitHub Actions
    participant Build as Build Job
    participant Package as Package Job
    participant FS as File System
    participant Release as GitHub Release

    GH->>Build: Trigger on main push/tag
    Build->>Build: Compile binaries for multiple platforms
    Build->>GH: Upload binary artifacts
    
    GH->>Package: Download all artifacts
    Package->>FS: Copy .claude-plugin/
    Package->>FS: Copy skills/ (was commands/)
    Package->>FS: Copy hooks/
    Package->>FS: Copy scripts/
    Package->>FS: Copy bin/
    Package->>FS: Copy config & docs
    Package->>Package: Create tar.gz & zip archives
    Package->>Release: Publish release with archives
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

skip-changelog Skip changelog enforcement

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants